home *** CD-ROM | disk | FTP | other *** search
/ Komputer for Alle 2001 #8 / CD 8 (Black) - 2001.iso / K-CS.dcr / 00294_Drag'n'Blink.ls < prev    next >
Encoding:
Text File  |  2001-02-20  |  3.9 KB  |  87 lines

  1. property SleepImage, TargetSprite, startPos, IncorrectCommand, correctCommand, DescribeSprite
  2. global Errorcount
  3.  
  4. on new me
  5.   set Errorcount to -1
  6.   set the visible of sprite (the spriteNum of me - 1) to 0
  7.   set the visible of sprite the spriteNum of me to 1
  8.   set the visible of sprite (the spriteNum of me + 1) to 0
  9.   set the visible of sprite (the spriteNum of me + 2) to 0
  10.   if the locV of sprite (the spriteNum of me - 1) > 0 then
  11.     set the locV of sprite (the spriteNum of me - 1) to the locV of sprite (the spriteNum of me - 1) - 500
  12.     set the locV of sprite (the spriteNum of me + 1) to the locV of sprite (the spriteNum of me + 1) - 500
  13.     set the locV of sprite (the spriteNum of me + 2) to the locV of sprite (the spriteNum of me + 2) - 500
  14.   end if
  15.   set the SleepImage of me to the memberNum of sprite the spriteNum of me
  16. end
  17.  
  18. on mouseDown me
  19.   if the locV of sprite (the spriteNum of me - 1) > 0 then
  20.     set the locV of sprite (the spriteNum of me - 1) to the locV of sprite (the spriteNum of me - 1) - 500
  21.     set the locV of sprite (the spriteNum of me + 1) to the locV of sprite (the spriteNum of me + 1) - 500
  22.     set the locV of sprite (the spriteNum of me + 2) to the locV of sprite (the spriteNum of me + 2) - 500
  23.   end if
  24.   set startPos to the loc of sprite the spriteNum of me
  25.   repeat while the stillDown = 1
  26.     set the loc of sprite the spriteNum of me to point(the mouseH, the mouseV)
  27.     updateStage()
  28.   end repeat
  29. end
  30.  
  31. on mouseEnter me
  32.   set the memberNum of sprite the spriteNum of me to SleepImage + 1
  33.   set the visible of sprite (the spriteNum of me - 1) to 1
  34.   set the visible of sprite (the spriteNum of me + 1) to 1
  35.   set the visible of sprite (the spriteNum of me + 2) to 1
  36.   if the locV of sprite (the spriteNum of me - 1) < 0 then
  37.     set the locV of sprite (the spriteNum of me - 1) to the locV of sprite (the spriteNum of me - 1) + 500
  38.     set the locV of sprite (the spriteNum of me + 1) to the locV of sprite (the spriteNum of me + 1) + 500
  39.     set the locV of sprite (the spriteNum of me + 2) to the locV of sprite (the spriteNum of me + 2) + 500
  40.   end if
  41.   updateStage()
  42. end
  43.  
  44. on mouseLeave me
  45.   if the locV of sprite (the spriteNum of me - 1) > 0 then
  46.     set the locV of sprite (the spriteNum of me - 1) to the locV of sprite (the spriteNum of me - 1) - 500
  47.     set the locV of sprite (the spriteNum of me + 1) to the locV of sprite (the spriteNum of me + 1) - 500
  48.     set the locV of sprite (the spriteNum of me + 2) to the locV of sprite (the spriteNum of me + 2) - 500
  49.   end if
  50.   set the memberNum of sprite the spriteNum of me to SleepImage
  51.   updateStage()
  52. end
  53.  
  54. on mouseUp me
  55.   set the memberNum of sprite the spriteNum of me to SleepImage
  56.   if sprite the spriteNum of me intersects sprite(the TargetSprite of me) then
  57.     do(the correctCommand of me)
  58.     set the loc of sprite the spriteNum of me to startPos
  59.   else
  60.     if Errorcount = -1 then
  61.       set Errorcount to 0
  62.       puppetSound("Venlig l├ªrer")
  63.     else
  64.       set Errorcount to Errorcount + 1
  65.       if Errorcount >= 5 then
  66.         puppetSound("Vrissen L├ªrer II")
  67.         set Errorcount to 0
  68.       else
  69.         do(the IncorrectCommand of me)
  70.       end if
  71.     end if
  72.     set the loc of sprite the spriteNum of me to startPos
  73.   end if
  74. end
  75.  
  76. on getBehaviorDescription
  77.   return "Creates sprites that can be dropped on any other [user specified] sprite. You can define the target sprite, " && RETURN & "whether the dragged sprite snaps back to it's start position, and handlers to run if the drop was on or off target."
  78. end
  79.  
  80. on getPropertyDescriptionList
  81.   if voidp(TargetSprite) then
  82.     set TargetSprite to 1
  83.   end if
  84.   set p_list to [#TargetSprite: [#default: TargetSprite, #format: #integer, #comment: "Target Sprite Number", #range: [#min: 1, #max: 120]], #correctCommand: [#format: #string, #comment: "The handler to run if dropped on the target", #default: "go to frame Her"], #IncorrectCommand: [#format: #string, #comment: "The handler to run if dropped off the target", #default: "puppetsound Twang1"]]
  85.   return p_list
  86. end
  87.